home *** CD-ROM | disk | FTP | other *** search
- module oRuntimePlugin is cPlugin
- has
- release Editor:
- GetIO()
- do
- result := oIORuntimePlugin;
- end;
- end;
- end;
-
- release Editor:
-
- object oIORuntimeLabel is "Runtime";
-
- object oIORuntimePlugin is cIOPlugin
- with
- MenuItems is [
- cIOEnvironmentGetterMenuItem with Name is "Cache URL"; Value is oCacheURLEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Click Count"; Value is oClickCountEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Command Key"; Value is oCommandKeyEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Connection Speed"; Value is oConnectionSpeedEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Control Key"; Value is oControlKeyEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Day"; Value is oDayEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Day of Week"; Value is oDayOfWeekEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Disk Cache Count"; Value is oDiskCacheCountEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Document URL"; Value is oURLEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Focus"; Value is oFocusEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Height"; Value is oHeightEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Hour"; Value is oHourEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Macintosh"; Value is oMacintoshEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Main URL"; Value is oMainURLEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Memory Cache Count"; Value is oMemoryCacheCountEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Minute"; Value is oMinuteEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Month"; Value is oMonthEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Name"; Value is oNameEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Project URL"; Value is oDiskURLEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Option Key"; Value is oOptionKeyEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Second"; Value is oSecondEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Shift Key"; Value is oShiftKeyEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Site URL"; Value is oSiteURLEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Volume"; Value is oVolumeEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Width"; Value is oWidthEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Windows"; Value is oWindowsEnvironmentGetter; end,
- cIOEnvironmentGetterMenuItem with Name is "Year"; Value is oYearEnvironmentGetter; end,
-
- cIOEnvironmentSetterMenuItem with Name is "Document URL"; Value is oURLEnvironmentSetter; end,
- cIOEnvironmentSetterMenuItem with Name is "Focus"; Value is oFocusEnvironmentSetter; end,
- cIOEnvironmentSetterMenuItem with Name is "Random Seed"; Value is oRandomSeedEnvironmentSetter; end,
- cIOEnvironmentSetterMenuItem with Name is "Volume"; Value is oVolumeEnvironmentSetter; end
- ];
- EventLines is [
- cIOSeedListLine
- with
- Label is oIORuntimeLabel;
- Lines is [
- cIOSeedLine with IO is oIOActivateEvent; end,
- cIOSeedLine with IO is oIOFocusedEvent; end,
- cIOSeedLine with IO is oIOKeyboardEvent; end,
- cIOSeedLine with IO is oIOLoadedEvent; end,
- cIOSeedLine with IO is oIOQuitEvent; end
- ];
- end
- ];
- CommandLines is [
- cIOSeedListLine
- with
- Label is oIORuntimeLabel;
- Lines is [
- cIOSeedLine with IO is oIOBackCommand; end,
- cIOSeedLine with IO is oIOBrowseCommand; end,
- cIOSeedLine with IO is oIODoKeyboardCommand; end,
- cIOSeedLine with IO is oIODoMenuCommand; end,
- cIOSeedLine with IO is oIOQuickTimeEffectCommand; end,
- cIOSeedLine with IO is oIOSimpleEffectCommand; end,
- cIOSeedLine with IO is oIOLaunchCommand; end,
- cIOSeedLine with IO is oIOMouseCommand; end,
- cIOSeedLine with IO is oIOPageSetupCommand; end,
- cIOSeedLine with IO is oIOPrintCommand; end,
- cIOSeedLine with IO is oIOQuitCommand; end,
- cIOSeedLine with IO is oIORefreshCommand; end,
- cIOSeedLine with IO is oIOScreenSaverCommand; end,
- cIOSeedLine with IO is oIOSetRuntimeCursorsCommand; end,
- cIOSeedLine with IO is oIOSetVolumeCommand; end,
- cIOSeedLine with IO is oIOSetWindowCommand; end
- ];
- end
- ];
- end;
-
- end; -- release Editor
-